home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / gnu / gnulib / sipp / demo / animatio / makefile < prev    next >
Encoding:
Makefile  |  1992-03-06  |  328 b   |  23 lines

  1. # Makefile for the animation demo.
  2.  
  3. LIBDIR=../../libsipp
  4.  
  5. CC = gcc -traditional
  6. #CC = cc
  7. #CFLAGS = -g -I$(LIBDIR)
  8. #CFLAGS = -O4 -I$(LIBDIR)
  9. CFLAGS = -pipe -O2 -I$(LIBDIR)
  10.  
  11. PROGS = animation
  12.  
  13.  
  14. all:    $(PROGS)
  15.  
  16. clean:
  17.     rm -f *.o *~ $(PROGS) anim??.p?m core
  18.  
  19.  
  20. animation: animation.o
  21.     $(CC) -o $@ animation.o -L$(LIBDIR) -lsipp -lm
  22.  
  23.